home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / irit40s.lha / Irit / geom_lib / makefile.djg < prev    next >
Encoding:
Makefile  |  1993-12-30  |  633 b   |  26 lines

  1. #
  2. # This is the make file for the prsr. library for DJGCC on the IBMPC.
  3. #
  4. #                Gershon Elber, Aug 1990
  5. #
  6.  
  7. !include "..\makeflag.djg"
  8.  
  9. OBJS = bbox.obj convex.obj geomat3d.obj geomvals.obj intrnrml.obj poly_cln.obj
  10.  
  11. libgeom.a: $(OBJS)
  12.     ar rc libgeom.a $(OBJS)
  13.  
  14. install: libgeom.a
  15.     copy libgeom.a $(LIB_DIR_DOS)
  16.     ar s $(LIB_DIR_DOS)\libgeom.a
  17.     copy *.h $(INC_DIR_DOS)
  18.  
  19. # Dependencies starts here - do not touch, generated automatically.
  20. bbox.o:    bbox.h
  21. convex.o:    convex.h poly_cln.h geomat3d.h intrnrml.h
  22. geomat3d.o:    convex.h geomat3d.h
  23. geomvals.o:    convex.h geomat3d.h geomvals.h
  24. intrnrml.o:    geomat3d.h intrnrml.h
  25. poly_cln.o:    poly_cln.h
  26.